home *** CD-ROM | disk | FTP | other *** search
/ Macromedia Multimedia Showcase 5.1 / Macromedia - Multimedia Showcase 5.1 (Macromedia) (1996).ISO / pc / media / 40000.dir / 00111_Script_utility script < prev    next >
Text File  |  1996-03-27  |  348b  |  16 lines

  1. -- ATP and Magic utilities 
  2. -- use this handler in the message window to see if a 
  3. -- text cast evaluates to a list. 
  4. on testForValidTextForConversionToList textCastName
  5.   
  6.   set t = the text of cast textCastName
  7.   set l = value(t)
  8.   
  9.   if objectP(l) then 
  10.     put "valid"
  11.   else
  12.     put "!!!! INVALID !!!!, l = ", l
  13.   end if
  14.   
  15. end
  16.